home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / VCL / MDI / MakeNet.bat next >
Encoding:
DOS Batch File  |  2004-10-22  |  385 b   |  22 lines

  1. CLS
  2.  
  3. ECHO *** Deleting old executable (if present) ***
  4. IF EXIST MDIDemo.exe DEL MDIDemo.exe
  5. ECHO.
  6.  
  7.  
  8. ECHO *** Compiling MDIDemo.dpr ***
  9. dccil -nsBorland.Vcl; -LuSystem.Windows.Forms -u"C:\Program Files\Borland\BDS\2.0\units" MDIDemo.dpr
  10. IF ERRORLEVEL 1 GOTO BadExit
  11.  
  12.  
  13. GOTO Exit
  14.  
  15. :BadExit
  16.  
  17. ECHO.
  18. ECHO An error occurred during the build process
  19. PAUSE
  20. GOTO Exit
  21.  
  22. :Exit